crypto/x509.pkcs8.PrivateKey (field)

10 uses

	crypto/x509 (current package)
		pkcs8.go#L24: 	PrivateKey []byte
		pkcs8.go#L48: 		key, err = ParsePKCS1PrivateKey(privKey.PrivateKey)
		pkcs8.go#L60: 		key, err = parseECPrivateKey(namedCurveOID, privKey.PrivateKey)
		pkcs8.go#L71: 		if _, err := asn1.Unmarshal(privKey.PrivateKey, &curvePrivateKey); err != nil {
		pkcs8.go#L84: 		if _, err := asn1.Unmarshal(privKey.PrivateKey, &curvePrivateKey); err != nil {
		pkcs8.go#L110: 		privKey.PrivateKey = MarshalPKCS1PrivateKey(k)
		pkcs8.go#L127: 		if privKey.PrivateKey, err = marshalECPrivateKeyWithOID(k, nil); err != nil {
		pkcs8.go#L139: 		privKey.PrivateKey = curvePrivateKey
		pkcs8.go#L147: 			if privKey.PrivateKey, err = asn1.Marshal(k.Bytes()); err != nil {
		pkcs8.go#L165: 			if privKey.PrivateKey, err = marshalECDHPrivateKey(k); err != nil {